body {
  font-family:'Times New Roman', Times, serif;
   background-color: lavender;
}

.hero-section {
  height: 100vh;
  background: url('https://source.unsplash.com/1600x900/?classroom,children') center/cover no-repeat;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.text-justify {
  text-align: justify;
}

.card-title {
  font-weight: 600;
  color: #007bff;
}

footer {
  font-size: 20px;
}
.reservation-img {
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

.slider-container {
    width: 100%;
    position: relative;
    height: 300px;
    overflow: hidden;
}

.logo-slider {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: slide 10s linear infinite;
}

.logo-slide {
    flex: 0 0 auto;
}

.logo-slide img {
    height: 220px;
    width: 320px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-slide img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

@keyframes slide {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


.gallery-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
}

.gallery-divider {
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 20px auto;
}

.gallery-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    position: relative;
    width: calc(25% - 15px);
    min-width: 220px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 170, 255, 0.6);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item i {
    display: block;
    font-size: 1.3rem;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .gallery-item {
        width: calc(33.33% - 15px);
    }
}

@media (max-width: 767px) {
    .gallery-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 575px) {
    .gallery-item {
        width: 100%;
    }
}


.slider-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.slider-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

.logo-slider {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.logo-slide {
  flex: 0 0 auto;
  width: 200px;
  border-radius: 10px;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.logo-slide:hover {
  transform: translateY(-5px);
}

.logo-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.carouselTitle {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .logo-slide {
    width: 160px;
  }
  .carouselTitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .logo-slide {
    width: 140px;
  }
  .carouselTitle {
    font-size: 0.85rem;
  }
}
